home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
determ4r
/
nosee1.frm
< prev
next >
Wrap
Text File
|
1999-08-11
|
2KB
|
72 lines
VERSION 5.00
Begin VB.Form Form1
AutoRedraw = -1 'True
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 2880
ClientLeft = 6240
ClientTop = 3690
ClientWidth = 4680
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2880
ScaleWidth = 4680
ShowInTaskbar = 0 'False
Begin VB.CommandButton Command1
Caption = "&END"
Height = 495
Left = 1680
TabIndex = 0
Top = 1800
Width = 975
End
Begin VB.Label Label1
Alignment = 2 'Center
Appearance = 0 'Flat
BackColor = &H80000005&
BackStyle = 0 'Transparent
Caption = "COOL PROGRAMMING BY [VB-BOY] koffe_s@hotmail.com"
BeginProperty Font
Name = "Times New Roman"
Size = 9
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 975
Left = 1320
TabIndex = 1
Top = 720
Width = 1695
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'*************************************************'
'THIS PROGRAM IS BY "VB-BOY" (koffe_s@hotmail.com)'
'FEEL FREE TO CHANGE THIS PROGRAM MAIL ME IF SOOM '
'PROBLEMS POP UP '
'*************************************************'
Private Sub Command1_Click()
Unload Form1
End Sub
Private Sub Form_Load()
Dim a, b, c, d, Desk&
Label1.Visible = True
a = Screen.TwipsPerPixelX
b = Screen.TwipsPerPixelY
c = Me.Top / b
d = Me.Left / a
Desk& = GetDesktopWindow
BitBlt Me.hDC, 0, 0, Me.Width, Me.Height, GetDC(Desk&), d, c, SRCCOPY
End Sub